home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / incl98.zoo / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-20  |  416 b   |  26 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. struct timeb {
  13.     long        time;        /* seconds since Jan 1., 1970 */
  14.     short        millitm;    /* milliseconds since "time" */
  15.     short        timezone;    /* minutes west of GMT */
  16.     short        dstflag;    /* if time zone can have DST */
  17. };
  18.  
  19. __EXTERN int    ftime    __PROTO((struct timeb *));
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25. #endif
  26.